home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Critical Thinking Skills / Workplace Effectiveness: Critical Thinking Skills.iso / pc / Files / Think3D.dxr / 00002_Navigation framework.ls < prev    next >
Encoding:
Text File  |  1998-09-16  |  1.0 KB  |  83 lines

  1. global gMasterData, gSection
  2.  
  3. on GoOn
  4.   case gSection of
  5.     #intro:
  6.       stopSound2()
  7.       goQ1()
  8.       startQuestions()
  9.     #Q1:
  10.       goQ2()
  11.     #q2:
  12.       goQ3()
  13.     #q3:
  14.       goQ4()
  15.     #q4:
  16.       goQ5()
  17.     #q5:
  18.       goQ6()
  19.     #Q6:
  20.       goQ7()
  21.     #Q7:
  22.       goQ8()
  23.     #Q8:
  24.       goQ9()
  25.     #Q9:
  26.       goQ10()
  27.     #q10:
  28.       goresults()
  29.     #results:
  30.       leaveThisMovie()
  31.   end case
  32. end
  33.  
  34. on goBack
  35.   case gSection of
  36.     #intro:
  37.       leaveThisMovie()
  38.     #Q1:
  39.       exitQuestions()
  40.       goIntro()
  41.     #q2:
  42.       goQ1()
  43.     #q3:
  44.       goQ2()
  45.     #q4:
  46.       goQ3()
  47.     #q5:
  48.       goQ4()
  49.     #Q6:
  50.       goQ5()
  51.     #Q7:
  52.       goQ6()
  53.     #Q8:
  54.       goQ7()
  55.     #Q9:
  56.       goQ8()
  57.     #q10:
  58.       goQ9()
  59.     #results:
  60.       goQ1()
  61.       startQuestions()
  62.   end case
  63. end
  64.  
  65. on leaveThisMovie
  66.   if iAmActivated(gMasterData) then
  67.     getPrintData()
  68.   end if
  69.   stopSounds()
  70.   set the timeoutScript to EMPTY
  71.   cursor(4)
  72.   go(1, "Island1")
  73. end
  74.  
  75. on notePadButton
  76.   DoNotepad()
  77. end
  78.  
  79. on continueNext
  80.   stopSound2()
  81.   go(the frame + 1)
  82. end
  83.